/* ============================================================================
   SOCIAL VERIFY SCREEN - World-Class UI
   ============================================================================
   Mobile-first. Desktop overrides via @media (min-width: 769px).
   Full-viewport standalone screen — no sidebar, no shared chrome.
   ============================================================================ */

/* ============================================= */
/* AMBIENT BACKGROUND                            */
/* ============================================= */

#socialVerifyScreen {
    width: 100%;
    min-height: 100vh;
    background: #06060c;
    color: #e8e8ed;
    position: relative;
    overflow-x: hidden;
}

.sv-ambient-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sv-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: sv-float 20s ease-in-out infinite;
}

.sv-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(87, 103, 255, 0.4), transparent 70%);
    top: -15%; left: -10%;
    animation-delay: 0s;
}

.sv-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 255, 0.3), transparent 70%);
    top: 40%; right: -12%;
    animation-delay: -7s;
}

.sv-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(72, 199, 200, 0.2), transparent 70%);
    bottom: -10%; left: 30%;
    animation-delay: -14s;
}

@keyframes sv-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* ============================================= */
/* CONTAINER & LAYOUT                            */
/* ============================================= */

.sv-container {
    position: relative;
    z-index: 1;
    padding: 24px 16px 40px;
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================= */
/* HEADER & BRANDING                             */
/* ============================================= */

.sv-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 24px;
}

.sv-logo-mark {
    display: inline-block;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(87, 103, 255, 0.3));
}

.sv-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #c8cdff 0%, #8b9aff 30%, #5767ff 60%, #8b5cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.sv-subtitle {
    font-size: 15px;
    color: #8888a0;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Trust signals */
.sv-trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #8888a0;
    letter-spacing: 0.2px;
}

.sv-trust-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sv-trust-dot-green { background: #48c78e; box-shadow: 0 0 6px rgba(72, 199, 142, 0.5); }
.sv-trust-dot-blue { background: #5767ff; box-shadow: 0 0 6px rgba(87, 103, 255, 0.5); }
.sv-trust-dot-purple { background: #8b5cff; box-shadow: 0 0 6px rgba(139, 92, 255, 0.5); }

.sv-trust-divider {
    width: 1px; height: 12px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================= */
/* GLASS CARD                                    */
/* ============================================= */

.sv-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================= */
/* FORM                                          */
/* ============================================= */

.sv-form {
    margin-bottom: 0;
}

.sv-textarea-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.sv-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    font-size: 16px; /* Prevents iOS zoom */
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #e8e8ed;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.sv-textarea:focus {
    outline: none;
    border-color: rgba(87, 103, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(87, 103, 255, 0.12), 0 0 30px rgba(87, 103, 255, 0.06);
}

.sv-textarea::placeholder {
    color: #55556a;
}

.sv-char-counter {
    text-align: right;
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    color: #55556a;
    padding: 4px 4px 0;
    transition: color 0.2s ease;
}

.sv-char-counter.sv-char-warning {
    color: #ff6b6b;
    font-weight: 600;
}

/* Form row — platform + button side by side on desktop */
.sv-form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-platform-section {
    flex: 1;
}

.sv-platform-label {
    font-size: 11px;
    font-weight: 600;
    color: #55556a;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sv-platform-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sv-platform-radio {
    display: none;
}

.sv-platform-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #8888a0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 34px;
}

.sv-platform-btn:hover {
    background: rgba(255, 255, 255, 0.07);
}

.sv-platform-radio:checked + .sv-platform-btn {
    color: #c8cdff;
    background: rgba(87, 103, 255, 0.12);
    border-color: rgba(87, 103, 255, 0.35);
}

/* ============================================= */
/* VERIFY BUTTON                                 */
/* ============================================= */

.sv-verify-btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 28px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #5767ff 0%, #6b5cff 50%, #8b42ff 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(87, 103, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sv-verify-btn:hover:not(:disabled) {
    opacity: 0.95;
    box-shadow: 0 6px 24px rgba(87, 103, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sv-verify-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.sv-verify-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

.sv-verify-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.sv-verify-btn:hover:not(:disabled) .sv-verify-btn-icon {
    transform: translateX(3px);
}

.sv-verify-btn.sv-loading .sv-verify-btn-text,
.sv-verify-btn.sv-loading .sv-verify-btn-icon {
    opacity: 0;
}

.sv-verify-btn.sv-loading::after {
    content: '';
    position: absolute;
    width: 22px; height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sv-spin 0.6s linear infinite;
}

@keyframes sv-spin {
    to { transform: rotate(360deg); }
}

/* ============================================= */
/* SIGNUP BANNER                                 */
/* ============================================= */

.sv-signup-banner {
    padding: 16px 20px;
    background: rgba(87, 103, 255, 0.06);
    border: 1px solid rgba(87, 103, 255, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.sv-signup-banner p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #8888a0;
    line-height: 1.5;
}

.sv-signup-banner strong {
    color: #c8cdff;
}

.sv-signup-link {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #5767ff, #7b42ff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    line-height: 24px;
}

/* ============================================= */
/* HOW IT WORKS STRIP                            */
/* ============================================= */

.sv-how-it-works {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.sv-how-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-how-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    color: #c8cdff;
    background: rgba(87, 103, 255, 0.15);
    border: 1px solid rgba(87, 103, 255, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

.sv-how-text {
    font-size: 13px;
    color: #8888a0;
    white-space: nowrap;
}

.sv-how-text strong {
    color: #c8cdff;
    font-weight: 600;
}

.sv-how-connector {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(87, 103, 255, 0.3), rgba(139, 92, 255, 0.3));
    flex-shrink: 0;
}

/* ============================================= */
/* RESULT CARD                                   */
/* ============================================= */

.sv-result-card {
    margin-top: 24px;
    animation: sv-fadeIn 0.4s ease;
}

.sv-result-card.sv-glass-card {
    padding: 24px 20px;
}

@keyframes sv-fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Verdict header — badge + confidence ring */
.sv-verdict-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

.sv-verdict-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
    border-radius: 14px;
    padding: 14px 24px;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

.sv-verdict-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sv-verdict-supported {
    background: rgba(72, 199, 142, 0.1);
    color: #48c78e;
    border: 1px solid rgba(72, 199, 142, 0.2);
    box-shadow: 0 0 24px rgba(72, 199, 142, 0.08);
}

.sv-verdict-contradicted {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 0 24px rgba(255, 107, 107, 0.08);
}

.sv-verdict-unclear {
    background: rgba(255, 183, 77, 0.1);
    color: #ffb74d;
    border: 1px solid rgba(255, 183, 77, 0.2);
    box-shadow: 0 0 24px rgba(255, 183, 77, 0.08);
}

.sv-verdict-unverifiable {
    background: rgba(136, 136, 160, 0.1);
    color: #8888a0;
    border: 1px solid rgba(136, 136, 160, 0.2);
}

/* Confidence ring */
.sv-confidence-ring {
    position: relative;
    width: 72px; height: 72px;
    flex-shrink: 0;
}

.sv-ring-svg {
    width: 100%; height: 100%;
}

.sv-ring-fill {
    transition: stroke-dashoffset 1s ease;
}

.sv-confidence-value {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    color: #c8cdff;
}

/* Social proof */
.sv-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(87, 103, 255, 0.05);
    border: 1px solid rgba(87, 103, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: #8888a0;
    margin-bottom: 20px;
}

.sv-social-proof svg {
    flex-shrink: 0;
    color: #8b9aff;
}

/* Section title pattern */
.sv-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #55556a;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sv-section-title svg {
    color: #8b9aff;
    flex-shrink: 0;
}

.sv-source-count {
    font-weight: 400;
    color: #44445a;
    margin-left: auto;
}

/* Reasoning */
.sv-reasoning {
    margin-bottom: 20px;
}

.sv-reasoning-text {
    font-size: 14px;
    line-height: 1.7;
    color: #c8c8d8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sv-reasoning-text.sv-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.sv-read-more {
    background: none;
    border: none;
    color: #8b9aff;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
}

.sv-read-more:hover {
    color: #c8cdff;
}

/* ============================================= */
/* SOURCE ROWS                                   */
/* ============================================= */

.sv-sources-section {
    margin-bottom: 20px;
}

.sv-source-row {
    min-height: 56px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.sv-source-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.sv-source-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sv-source-title {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0ed;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sv-source-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sv-source-year {
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    color: #55556a;
}

.sv-source-score {
    font-size: 11px;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    padding: 3px 8px;
    border-radius: 6px;
}

.sv-source-score.sv-score-high {
    background: rgba(72, 199, 142, 0.12);
    color: #48c78e;
}

.sv-source-score.sv-score-mid {
    background: rgba(87, 103, 255, 0.12);
    color: #8b9aff;
}

.sv-source-score.sv-score-low {
    background: rgba(255, 183, 77, 0.1);
    color: #ffb74d;
}

.sv-source-expand-icon {
    font-size: 10px;
    color: #44445a;
    transition: transform 0.2s ease;
}

.sv-source-row.sv-expanded .sv-source-expand-icon {
    transform: rotate(180deg);
}

.sv-source-abstract {
    font-size: 13px;
    line-height: 1.6;
    color: #8888a0;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
}

.sv-source-row.sv-expanded .sv-source-abstract {
    display: block;
}

/* ============================================= */
/* SHARE BAR                                     */
/* ============================================= */

.sv-share-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-share-btn {
    min-height: 44px;
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #c8c8d8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.sv-share-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.sv-share-btn.sv-share-x {
    background: rgba(29, 161, 242, 0.08);
    border-color: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
}

.sv-share-btn.sv-share-x:hover {
    background: rgba(29, 161, 242, 0.12);
}

.sv-share-btn.sv-share-linkedin {
    background: rgba(0, 119, 181, 0.08);
    border-color: rgba(0, 119, 181, 0.2);
    color: #0077b5;
}

.sv-share-btn.sv-share-linkedin:hover {
    background: rgba(0, 119, 181, 0.12);
}

.sv-share-btn.sv-copied {
    background: rgba(72, 199, 142, 0.08);
    border-color: rgba(72, 199, 142, 0.2);
    color: #48c78e;
}

/* ============================================= */
/* VERIFY ANOTHER                                */
/* ============================================= */

.sv-verify-another {
    width: 100%;
    min-height: 44px;
    padding: 12px 20px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #8888a0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sv-verify-another:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #c8c8d8;
    border-color: rgba(255, 255, 255, 0.12);
}

.sv-verify-another svg {
    flex-shrink: 0;
}

/* ============================================= */
/* SIGNUP PROMPT                                 */
/* ============================================= */

.sv-signup-prompt {
    text-align: center;
    padding: 36px 24px;
    margin-top: 24px;
}

.sv-signup-prompt.sv-glass-card {
    border-color: rgba(87, 103, 255, 0.15);
}

.sv-signup-prompt h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e8e8ed;
    margin: 0 0 8px 0;
}

.sv-signup-prompt p {
    font-size: 14px;
    color: #8888a0;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* ============================================= */
/* ERROR STATE                                   */
/* ============================================= */

.sv-error {
    padding: 16px 20px;
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 12px;
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
}

/* ============================================= */
/* TABLET & DESKTOP — min-width: 769px           */
/* ============================================= */

@media (min-width: 769px) {
    .sv-container {
        max-width: 680px;
        margin: 0 auto;
        padding: 48px 32px 64px;
    }

    .sv-header {
        padding-top: 32px;
        margin-bottom: 40px;
    }

    .sv-title {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .sv-subtitle {
        font-size: 17px;
    }

    .sv-glass-card {
        padding: 32px;
        border-radius: 24px;
    }

    .sv-textarea {
        min-height: 140px;
        border-radius: 16px;
    }

    .sv-form-row {
        flex-direction: row;
        align-items: flex-end;
    }

    .sv-verify-btn {
        width: auto;
        min-width: 180px;
        flex-shrink: 0;
    }

    .sv-result-card.sv-glass-card {
        padding: 32px;
    }

    .sv-verdict-badge {
        padding: 16px 32px;
    }

    .sv-confidence-ring {
        width: 80px; height: 80px;
    }

    .sv-share-bar {
        flex-direction: row;
    }

    .sv-share-btn {
        width: auto;
        flex: 1;
    }

    .sv-verify-another {
        width: auto;
        display: flex;
        margin: 0 auto;
        padding: 12px 32px;
    }

    .sv-reasoning-text {
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .sv-source-abstract {
        display: block;
    }

    .sv-source-expand-icon {
        display: none;
    }
}

/* ============================================= */
/* LARGE DESKTOP — min-width: 1024px             */
/* ============================================= */

@media (min-width: 1024px) {
    .sv-container {
        max-width: 760px;
    }

    .sv-title {
        font-size: 52px;
    }
}

/* ============================================= */
/* SMALL PHONE — max-width: 480px                */
/* ============================================= */

@media (max-width: 480px) {
    .sv-container {
        padding: 16px 12px 32px;
    }

    .sv-title {
        font-size: 26px;
    }

    .sv-glass-card {
        padding: 16px;
        border-radius: 16px;
    }

    .sv-platform-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .sv-verdict-badge {
        font-size: 15px;
        padding: 12px 16px;
    }

    .sv-confidence-ring {
        width: 60px; height: 60px;
    }

    .sv-confidence-value {
        font-size: 14px;
    }

    .sv-source-title {
        font-size: 13px;
    }

    .sv-how-it-works {
        flex-direction: column;
        gap: 8px;
    }

    .sv-how-connector {
        width: 1px; height: 12px;
        background: linear-gradient(180deg, rgba(87, 103, 255, 0.3), rgba(139, 92, 255, 0.3));
    }
}

/* ============================================= */
/* TOUCH DEVICE OPTIMIZATIONS                    */
/* ============================================= */

@media (hover: none) and (pointer: coarse) {
    .sv-source-row:active {
        background: rgba(255, 255, 255, 0.06);
    }

    .sv-share-btn:active {
        opacity: 0.85;
    }

    .sv-platform-btn:active {
        transform: scale(0.97);
    }

    /* Remove hover effects on touch */
    .sv-source-row:hover,
    .sv-share-btn:hover,
    .sv-verify-another:hover {
        background: inherit;
        border-color: inherit;
    }
}

/* ============================================= */
/* REDUCED MOTION                                */
/* ============================================= */

@media (prefers-reduced-motion: reduce) {
    .sv-ambient-orb {
        animation: none;
    }

    .sv-result-card,
    .sv-ring-fill,
    .sv-confidence-fill {
        animation: none;
        transition: none;
    }

    .sv-verify-btn.sv-loading::after {
        animation-duration: 1.5s;
    }
}

/* ============================================= */
/* PRINT                                         */
/* ============================================= */

@media print {
    .sv-ambient-bg,
    .sv-verify-btn,
    .sv-share-bar,
    .sv-verify-another,
    .sv-signup-banner,
    .sv-platform-group,
    .sv-platform-label,
    .sv-form,
    .sv-how-it-works,
    .sv-trust-signals,
    .sv-logo-mark {
        display: none !important;
    }

    #socialVerifyScreen {
        background: #fff !important;
        color: #000 !important;
    }

    .sv-glass-card {
        background: #fff !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
}
