/* ═══════════════════════════════════════════
   RESUME SCORER — Tool-Specific Styles
   ═══════════════════════════════════════════ */

/* ── Resume Text Input ── */
textarea.resume-input {
    width: 100%;
    height: 200px;
    padding: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-main);
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

textarea.resume-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    outline: none;
}

/* ── Score Circle ── */
.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.score-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--border) 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background 1s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.score-inner {
    width: 106px;
    height: 106px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.score-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-bright);
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── Audit Checklist ── */
.checklist {
    text-align: left;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
    gap: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.check-item:hover {
    border-color: var(--card-border);
}

.check-item .status-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.check-item span:last-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.check-item .dot {
    margin-top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.pass {
    background: var(--success) !important;
    box-shadow: 0 0 8px var(--success-bg);
}

.dot.fail {
    background: var(--danger) !important;
    box-shadow: 0 0 8px var(--danger-bg);
}

.dot.warn {
    background: var(--warning) !important;
    box-shadow: 0 0 8px var(--warning-bg);
}

.icon {
    margin-right: 10px;
    font-size: 1.1rem;
    min-width: 20px;
}

.icon.pass {
    color: var(--success);
}

.icon.fail {
    color: var(--danger);
}

.icon.warn {
    color: var(--warning);
}

/* ── Resume Responsive ── */
@media (max-width: 480px) {
    .check-item {
        padding: 8px 10px;
        font-size: 0.84rem;
    }
}